home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
s_to_z
/
tpop3
/
pop3mail.dpr
< prev
next >
Wrap
Text File
|
1996-09-15
|
256b
|
15 lines
program Pop3mail;
uses
Forms,
Pop3main in 'POP3MAIN.PAS' {POP3Form},
Pop3su in 'POP3SU.PAS' {SetupDlg},
Msgdcd in 'MSGDCD.PAS' {MsgProcessor};
{$R *.RES}
begin
Application.CreateForm(TPOP3Form, POP3Form);
Application.Run;
end.